home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / cuj9204 / 1004110c < prev    next >
Text File  |  1992-06-02  |  196b  |  11 lines

  1.  
  2. void get_low_high(int a, int b, int c, int *low, int *high)
  3.      {
  4.      *low = (a < b) ? a : b;
  5.      if (c < *low) *low = c;
  6.      *high = (a > b) ? a : b;
  7.      if (c > *high) *high = c;
  8.      }
  9.  
  10.  
  11.